085c08f629cc87beda97e148bafeae61c390fcd5,python/src/com/jetbrains/python/testing/attest/PythonAtTestRunConfiguration.java,PythonAtTestRunConfiguration,checkConfiguration,#,70
Before Change
@Override
public void checkConfiguration() throws RuntimeConfigurationException {
super.checkConfiguration();
if (!VFSTestFrameworkListener.getInstance().isAtTestInstalled(PythonSdkType.findSdkByPath(getInterpreterPath())))
throw new RuntimeConfigurationWarning(PyBundle.message("runcfg.testing.no.test.framework", "attest"));
}
}
After Change
@Override
public void checkConfiguration() throws RuntimeConfigurationException {
super.checkConfiguration();
Sdk sdkPath = PythonSdkType.findSdkByPath(getInterpreterPath());
if (sdkPath != null && !VFSTestFrameworkListener.getInstance().isAtTestInstalled(sdkPath))
throw new RuntimeConfigurationWarning(PyBundle.message("runcfg.testing.no.test.framework", "attest"));
}
}